home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Atari Mega Archive 1
/
Atari Mega Archive - Volume 1.iso
/
language
/
gemfsc18.lzh
/
AESSRC18.LZH
/
AESUTIL.S
/
RCEQUAL.S
< prev
next >
Wrap
Text File
|
1992-03-07
|
610b
|
20 lines
;=========================================================================
; rc_equal
;=========================================================================
_rc_equal::
.cargs #4,.psrce.l,.pdest.l
move.l .psrce(sp),a0
move.l .pdest(sp),a1
moveq.l #0,d0 ; Assume not equal
cmp.l (a0)+,(a1)+
bne.s .notequal
cmp.l (a0)+,(a1)+
bne.s .notequal
moveq.l #1,d0
.notequal:
tst.w d0 ; insure CCR return matches d0.
rts